/* ===== UI/UX Design Page Styles ===== */
:root {
    --primary-color: #6c63ff;
    --secondary-color: #4a44e0;
    --accent-color: #00e6c7;
    --dark-color: #1c1c32;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ===== UI/UX DESIGN SECTION ===== */
.ui-ux-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.ui-ux-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 24%, rgba(194, 252, 13, 0.05) 25%, rgba(194, 252, 13, 0.05) 26%, transparent 27%, transparent 74%, rgba(194, 252, 13, 0.05) 75%, rgba(194, 252, 13, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(-45deg, transparent 24%, rgba(194, 252, 13, 0.05) 25%, rgba(194, 252, 13, 0.05) 26%, transparent 27%, transparent 74%, rgba(194, 252, 13, 0.05) 75%, rgba(194, 252, 13, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: rgba(194, 252, 13, 0.1);
    color: #C2FC0D;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(194, 252, 13, 0.2);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 252, 13, 0.2), transparent);
    animation: slideIn 2s linear infinite;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.section-title .highlight {
    color: #C2FC0D;
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.section-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #C2FC0D;
    color: #0c0b0e;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(194, 252, 13, 0.4);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* ===== 3D DEVICE SHOWCASE ===== */
.design-3d-showcase {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1200px;
    margin: 60px 0;
}

.device-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: deviceFloat 10s infinite ease-in-out;
}

@keyframes deviceFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(10deg); }
}

/* Mobile Device Styling */
.mobile-device {
    position: absolute;
    width: 160px;
    height: 320px;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%) rotateY(10deg) rotateX(5deg) rotateZ(-2deg);
    transform-style: preserve-3d;
    background: linear-gradient(45deg, #222, #444);
    border-radius: 30px;
    box-shadow: 
        0 0 0 8px #333,
        -5px 5px 15px rgba(0,0,0,0.5),
        5px 5px 15px rgba(0,0,0,0.3);
    z-index: 10;
    transition: transform 0.5s ease;
}

.mobile-device:hover {
    transform: translate(-50%, -50%) rotateY(0deg) rotateX(0deg) rotateZ(0deg) scale(1.1);
}

.device-screen {
    position: absolute;
    width: 90%;
    height: 88%;
    top: 6%;
    left: 5%;
    background: linear-gradient(135deg, var(--dark-color), #2a2a4a);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.device-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.device-notch {
    position: absolute;
    width: 50%;
    height: 20px;
    top: 6%;
    left: 25%;
    background: #333;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.device-buttons {
    position: absolute;
    width: 4px;
    height: 60px;
    top: 120px;
    left: -4px;
    background: #444;
    border-radius: 2px 0 0 2px;
}

.device-buttons::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 40px;
    top: 70px;
    background: #444;
    border-radius: 2px 0 0 2px;
}

/* Laptop Device Styling */
.laptop-device {
    position: absolute;
    width: 350px;
    height: 220px;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -40%) rotateY(-10deg) rotateX(5deg) rotateZ(2deg);
    transform-style: preserve-3d;
    z-index: 5;
    transition: transform 0.5s ease;
}

.laptop-device:hover {
    transform: translate(-50%, -40%) rotateY(0deg) rotateX(0deg) rotateZ(0deg) scale(1.05);
}

.laptop-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #222, #444);
    border-radius: 10px 10px 0 0;
    box-shadow: 
        0 0 0 2px #111,
        -5px 5px 15px rgba(0,0,0,0.4);
    transform-origin: bottom center;
    transform-style: preserve-3d;
    transform: rotateX(10deg);
}

.laptop-screen img {
    width: 92%;
    height: 85%;
    top: 7.5%;
    left: 4%;
    border-radius: 3px;
    object-fit: cover;
}

.laptop-keyboard {
    position: absolute;
    width: 120%;
    height: 15px;
    bottom: -15px;
    left: -10%;
    background: linear-gradient(to bottom, #444, #222);
    border-radius: 0 0 10px 10px;
    transform: rotateX(-25deg);
    transform-origin: top center;
    box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 60px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(194, 252, 13, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(194, 252, 13, 0.2);
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(194, 252, 13, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: #C2FC0D;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #C2FC0D;
    font-size: 18px;
    line-height: 1;
}

/* ===== INTERACTIVE DESIGN SECTION ===== */
.interactive-design-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 60px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.interactive-mobile-showcase {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-3d-container {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.phone-frame {
    position: relative;
    width: 200px;
    height: 400px;
    background: linear-gradient(45deg, #222, #444);
    border-radius: 30px;
    transform: rotateY(-20deg) rotateX(10deg);
    box-shadow: 20px 20px 30px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
}

.phone-frame:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

.phone-screen {
    position: absolute;
    width: 92%;
    height: 86%;
    top: 7%;
    left: 4%;
    background: linear-gradient(135deg, var(--dark-color), #2a2a4a);
    border-radius: 20px;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-shadow {
    position: absolute;
    width: 180px;
    height: 30px;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.3);
    filter: blur(15px);
    border-radius: 50%;
}

.content-block {
    max-width: 600px;
    margin-left: 50px;
}

.content-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: #C2FC0D;
    margin-bottom: 20px;
}

.content-block p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-points li {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid #C2FC0D;
}

.feature-points h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.feature-points p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes slideIn {
    from {
        left: -100%;
    }
    to {
        left: 100%;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .design-3d-showcase {
        height: 300px;
    }
    
    .mobile-device {
        width: 140px;
        height: 280px;
    }
    
    .laptop-device {
        width: 300px;
        height: 180px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .content-block {
        margin-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .design-3d-showcase {
        height: 250px;
    }
    
    .mobile-device {
        width: 120px;
        height: 240px;
    }
    
    .laptop-device {
        width: 260px;
        height: 160px;
    }
    
    .phone-frame {
        width: 160px;
        height: 320px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .content-block h2 {
        font-size: 28px;
    }
    
    .content-block p {
        font-size: 16px;
    }
}
/* ===== TECHNOLOGIES SECTION ===== */
.technologies-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    position: relative;
    overflow: hidden;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(194, 252, 13, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: rgba(194, 252, 13, 0.2);
}

.tech-card:hover::before {
    transform: translateX(100%);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: rgba(194, 252, 13, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.tech-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.tech-card:hover .tech-icon img {
    transform: scale(1.1);
}

.tech-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Auto-scroll for mobile */
@media (max-width: 768px) {
    .tech-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .tech-card {
        min-width: 280px;
        scroll-snap-align: start;
    }

    /* Hide scrollbar */
    .tech-grid::-webkit-scrollbar {
        display: none;
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .technologies-section {
        padding: 60px 0;
    }

    .tech-card {
        padding: 20px;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
    }

    .tech-icon img {
        width: 30px;
        height: 30px;
    }

    .tech-card h3 {
        font-size: 20px;
    }
}
/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(194, 252, 13, 0.2);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.faq-toggle svg {
    width: 24px;
    height: 24px;
    stroke: #C2FC0D;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 15px 0;
    padding: 0 30px;
}

.faq-answer ul {
    list-style: none;
    padding: 0 30px 25px;
    margin: 0;
}

.faq-answer li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.faq-answer li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #C2FC0D;
    font-size: 18px;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 18px;
    }

    .faq-answer p,
    .faq-answer ul {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* AI Implementation Section */
.ai-implementation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    position: relative;
    overflow: hidden;
}

.ai-implementation-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-implementation-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ai-implementation-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ai-implementation-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #C2FC0D;
    color: #0c0b0e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.ai-implementation-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(194, 252, 13, 0.3);
}

.ai-implementation-button .arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.ai-implementation-button:hover .arrow-icon {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ai-implementation-section {
        padding: 60px 0;
    }

    .ai-implementation-content {
        padding: 40px 20px;
    }

    .ai-implementation-title {
        font-size: 32px;
    }

    .ai-implementation-subtitle {
        font-size: 18px;
    }

    .ai-implementation-button {
        padding: 14px 28px;
        font-size: 16px;
    }
}
